home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / glibc-1.09 / glibc-1 / glibc-1.09.1 / sysdeps / unix / sysv / irix4 / confname.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-18  |  2.1 KB  |  81 lines

  1. /* `sysconf', `pathconf', and `confstr' NAME values.  Irix 4 version.
  2. Copyright (C) 1994 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4.  
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Library General Public License as
  7. published by the Free Software Foundation; either version 2 of the
  8. License, or (at your option) any later version.
  9.  
  10. The GNU C Library is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13. Library General Public License for more details.
  14.  
  15. You should have received a copy of the GNU Library General Public
  16. License along with the GNU C Library; see the file COPYING.LIB.  If
  17. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  18. Cambridge, MA 02139, USA.  */
  19.  
  20. /* Values for the NAME argument to `pathconf' and `fpathconf'.  */
  21. enum
  22.   {
  23.     _PC_LINK_MAX = 1,
  24.     _PC_MAX_CANON,
  25.     _PC_MAX_INPUT,
  26.     _PC_NAME_MAX,
  27.     _PC_PATH_MAX,
  28.     _PC_PIPE_BUF,
  29.     _PC_CHOWN_RESTRICTED,
  30.     _PC_NO_TRUNC,
  31.     _PC_VDISABLE
  32.   };
  33.  
  34. /* Values for the argument to `sysconf'.  */
  35. enum
  36.   {
  37.     _SC_ARG_MAX = 1,
  38.     _SC_CHILD_MAX,
  39.     _SC_CLK_TCK,
  40.     _SC_NGROUPS_MAX,
  41.     _SC_OPEN_MAX,
  42.     _SC_JOB_CONTROL,
  43.     _SC_SAVED_IDS,
  44.     _SC_VERSION,
  45.  
  46.     /* Above are done by the Irix system call.
  47.        The rest are done by the C library (or are not really implemented).  */
  48.  
  49.     _SC_STREAM_MAX,
  50.     _SC_TZNAME_MAX,
  51.     _SC_PAGESIZE,
  52.  
  53.     /* Values for the argument to `sysconf'
  54.        corresponding to _POSIX2_* symbols.  */
  55.     _SC_BC_BASE_MAX,
  56.     _SC_BC_DIM_MAX,
  57.     _SC_BC_SCALE_MAX,
  58.     _SC_BC_STRING_MAX,
  59.     _SC_COLL_WEIGHTS_MAX,
  60.     _SC_EQUIV_CLASS_MAX,
  61.     _SC_EXPR_NEST_MAX,
  62.     _SC_LINE_MAX,
  63.     _SC_RE_DUP_MAX,
  64.  
  65.     _SC_2_VERSION,
  66.     _SC_2_C_BIND,
  67.     _SC_2_C_DEV,
  68.     _SC_2_FORT_DEV,
  69.     _SC_2_FORT_RUN,
  70.     _SC_2_SW_DEV,
  71.     _SC_2_LOCALEDEF
  72.   };
  73.  
  74. #ifdef __USE_POSIX2
  75. /* Values for the NAME argument to `confstr'.  */
  76. enum
  77.   {
  78.     _CS_PATH            /* The default search path.  */
  79.   };
  80. #endif
  81.